home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / PowerPlant / CBalloonKeyAttach 1.0 / CBalloonKeyAttach.h < prev    next >
C/C++ Source or Header  |  1996-05-16  |  819b  |  25 lines

  1. #pragma once
  2.  
  3. // ===========================================================================
  4. // • CBalloonKeyAttachment                               CBalloonKeyAttachment •
  5. // ===========================================================================
  6. //    Allows the "Help" key to toggle balloon help off and on. 
  7. //
  8. //    Last update: Paul Robichaux <paul@ljl.com>, 5/16/96
  9. //
  10. //  ©1996 Paul Robichaux. All rights reserved. Free for use in noncommercial or 
  11. //  shareware products; contact author for other uses. As a courtesy, please send
  12. //  me bug reports, updates, or improvement suggestions if you have 'em.
  13.  
  14. class LAttachment;
  15.  
  16. class CBalloonKeyAttachment : public LAttachment
  17. {
  18.     public:
  19.         CBalloonKeyAttachment();
  20.         ~CBalloonKeyAttachment();
  21.         void    ExecuteSelf(MessageT inMessage, void *ioParam);
  22.     private:
  23.         Boolean mBalloonState;
  24. };
  25.